home *** CD-ROM | disk | FTP | other *** search
/ Deep Throat Girls 3 / Deep Throat Girls 3.iso / pc / dtg3_pc.dir / 00080.ls < prev    next >
Encoding:
Text File  |  1995-08-04  |  1.1 KB  |  48 lines

  1. on mouseUp
  2.   set x to the movieTime of sprite 2
  3.   if x > 1559 then
  4.     preL("PORT1.MOV")
  5.     go("HALL1")
  6.   else
  7.     if (x > 0) and (x < 121) then
  8.       preL("PORT1.MOV")
  9.       go("HALL1")
  10.     else
  11.       if (x < 321) and (x > 160) then
  12.         preL("PORT2.MOV")
  13.         go("HALL2")
  14.       else
  15.         if (x < 521) and (x > 360) then
  16.           preL("PORT3.MOV")
  17.           go("HALL3")
  18.         else
  19.           if (x < 721) and (x > 560) then
  20.             preL("PORT4.MOV")
  21.             go("HALL4")
  22.           else
  23.             if (x < 921) and (x > 760) then
  24.               preL("PORT5.MOV")
  25.               go("HALL5")
  26.             else
  27.               if (x < 1121) and (x > 960) then
  28.                 preL("PORT6.MOV")
  29.                 go("HALL6")
  30.               else
  31.                 if (x < 1321) and (x > 1160) then
  32.                   preL("PORT7.MOV")
  33.                   go("HALL7")
  34.                 else
  35.                   if (x < 1521) and (x > 1360) then
  36.                     preL("PORT8.MOV")
  37.                     go("HALL8")
  38.                   end if
  39.                 end if
  40.               end if
  41.             end if
  42.           end if
  43.         end if
  44.       end if
  45.     end if
  46.   end if
  47. end
  48.